--- title: In-App Messaging description: Amplify UI In-App Messaging provides UI components for displaying in-app messages. supportedFrameworks: react|react-native --- import { Alert } from '@aws-amplify/ui-react'; import { AppDirectoryAlert } from '@/components/AppDirectoryAlert'; import { Fragment } from '@/components/Fragment'; import ReactPropsTable from '@/components/propsTable/ReactPropsTable'; import { getCustomStaticPath } from '@/utils/getCustomStaticPath'; import { IN_APP_MESSAGE_DISPLAY_PROPS, MESSAGE_COMPONENTS, USE_IN_APP_MESSAGING_API, } from './props'; export async function getStaticPaths() { return getCustomStaticPath(frontmatter.supportedFrameworks); } {/* `getStaticProps` is required to prevent "Error: getStaticPaths was added without a getStaticProps. Without getStaticProps, getStaticPaths does nothing" */} export async function getStaticProps() { return { props: {} } } ## Overview In-App Messaging allows you to better engage users with contextually appropriate messages rendered on events triggered by their activity while using your application. Create messages that look native to your application and deliver them to your users all without additional code changes. {({ platform }) => import(`./fragments/overview.${platform}.mdx`)} ## Prerequisites {({ platform }) => import(`./fragments/prereqs.${platform}.mdx`)} ## Getting Started {({ platform }) => import('@/components/AppDirectoryAlert')} Integration with your application can be done with the `InAppMessagingProvider` and `InAppMessageDisplay` components directly, or wrap your app in `withInAppMessaging` (a [React Higher-Order Component](https://legacy.reactjs.org/docs/higher-order-components.html)): {({ platform }) => import(`./examples/getting-started.${platform}.mdx`)} >[`InAppMessaging.syncMessages`](https://docs.amplify.aws/lib/in-app-messaging/sync-messages/q/platform/react-native) is an asynchronous function that handles syncing remote in-app messages with the end user application. ## `InAppMessagingProvider` and `useInAppMessaging` `InAppMessagingProvider` exposes the value of the `InAppMessagingContext` (a [React context](https://legacy.reactjs.org/docs/context.html)) to its `children`. `useInAppMessaging` can be used to directly interact with `InAppMessagingContext` from within `InAppMessagingProvider`. `useInAppMessaging` exposes the following functions and values of the `InAppMessagingContext`: In some use cases, you may want to forgo the usage of the default UI handling altogether while still leveraging the Amplify provided In-App Messaging React context and provider for in-app message context state. This can be achieved by wrapping your application in an `InAppMessagingProvider` and utilizing the `useInAppMessaging` hook to expose the values of the `InAppMessagingContext`. {({ platform }) => import(`./examples/use-messaging.${platform}.mdx`)} ## `InAppMessageDisplay` `InAppMessageDisplay` handles the display and lifecycle of an in-app message. # The `MessageComponents` prop Functional UI components that render in-app message content ### Integrate Custom Components You may provide your own In-App Messaging UI components to override the default Amplify provided UI components by utilizing the components prop of InAppMessagingProvider. {({ platform }) => import(`./examples/custom-components.${platform}.mdx`)} ### Style Override The default Amplify UI components handle custom style using the `styles` prop: {({ platform }) => import(`./examples/custom-style.${platform}.mdx`)} Available style props: {({ platform }) => import(`./props/styles.${platform}.mdx`)}